home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / blox.swf / scripts / DefineButton2_569 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2006-06-13  |  444 b   |  19 lines

  1. on(release){
  2.    frmPost = new LoadVars();
  3.    frmPost.playername = EnterField.text;
  4.    frmPost.score = _root.Score;
  5.    frmPost.dval = "102x49g58j";
  6.    frmPost.gameid = "blox";
  7.    frmPost.url = _root.HiScoreSaveURL;
  8.    frmPost.send(frmPost.url,"_blank","GET");
  9.    _root.MainMenuMusic.start(0,1000000);
  10.    if(_root.RegisteredVersion == 0)
  11.    {
  12.       _root.ShowBuyMeWindow(1);
  13.    }
  14.    else
  15.    {
  16.       _root.ShowMainMenu();
  17.    }
  18. }
  19.